home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
langs
/
elan1v5.arc
/
FILES.ARC
/
COPY.E
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1989-03-10
|
421 b
|
27 lines
copy:
ask name of old file;
ask name of new file;
copy from old to new.
ask name of old file:
TEXT VAR x;
put ("Old file :");
get (x);
old file (x).
ask name of new file:
put ("New file :");
get (x);
new file (x).
copy from old to new:
REP
read (x);
write (x);
write line
UNTIL file ended
ENDREP;
close file.
⇦